程式:
import numpy as np
# 產生0~48的亂數共7個
a2 = np.random.randint(49,size=7)
print (a2)
# 產生0~48的數
a3 = np.arange(49)
print (a3)
輸出結果:
[23 28 32 9 14 31 27]
[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
48]